(C) 1996 AROS - The Amiga Replacement OS


NAME
LONG IEEESPSinh()
SYNOPSIS

LONG y

LOCATION
In MathIeeeSingTransBase at offset 10
FUNCTION
Calculate the hyperbolic sine of the IEEE single precision number

INPUTS
y
IEEE single precision floating point number
RESULT
IEEE single precision floating point number

flags: zero : result is zero negative : result is negative overflow : result is too big for IEEE single precsion format

NOTES
EXAMPLE
BUGS
SEE ALSO
INTERNALS
sinh(x) = (1/2)*( e^x- e^(-x) )

sinh( |x| >= 9 ) = (1/2) * (e^x);

HISTORY
25.07.1997 bergers
Initial Revision - Some more math stuff!